home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / eText5 / Source / eTURLink.subproj / eTURLinkUI.h < prev    next >
Encoding:
Text File  |  1994-07-24  |  960 b   |  32 lines

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //    FILENAME:    eTURLinkUI.h 
  3. //    SUMMARY:    Interface for a UI for setting an URLRep
  4. //    SUPERCLASS:    eTURLinkUI:eTImageUI:Object
  5. //    INTERFACE:    eTURLinkUI.nib
  6. //    PROTOCOLS:    <Inspectable>
  7. //    AUTHOR:        Rohit Khare
  8. //    COPYRIGHT:    (c) 1994 California Institure of Technology, eText Project
  9. ///////////////////////////////////////////////////////////////////////////////
  10. //    DESCRIPTION
  11. //        Just maintains one lousy Text object holdling an URLRep.
  12. ///////////////////////////////////////////////////////////////////////////////
  13. //    HISTORY
  14. //  07/22/94:    Minimal Creation.
  15. ///////////////////////////////////////////////////////////////////////////////
  16.  
  17. #import "eTURLink.h"
  18. #import "../eTImage.subproj/eTImageUI.h"
  19.  
  20. @interface eTURLinkUI:eTImageUI
  21. {
  22.     id    theeTURLink;
  23.     id    urlField;
  24.     id    urlPanel;
  25.     id    urlView;
  26.     id    omniWell;
  27. }
  28.  
  29. + new;
  30. - setAnnotation: neweTURLink;
  31. - editURL:sender;
  32. @end